home *** CD-ROM | disk | FTP | other *** search
- echo off
- rem
- rem buildmsc.bat
- rem
- rem Builds all four Grafix libraries from scratch using MS C and
- rem writes any errors to the file ERRS.
- rem
- del *.obj
- del grafixl.lib
- make cflags=/AL asmflags=/DLARGE libname=grafixl makemsc >errs
- del *.obj
- del grafixm.lib
- make cflags=/AM asmflags=/DMEDIUM libname=grafixm makemsc >>errs
- del *.obj
- del grafixc.lib
- make cflags=/AC asmflags=/DCOMPACT libname=grafixc makemsc >>errs
- del *.obj
- del grafix.lib
- make cflags=/AS asmflags=/DSMALL libname=grafix makemsc >>errs
-